e05f8c09bc14fdcee7219139a4d48fde479b6456,src/main/java/elec332/craftingtableiv/blocks/container/GuiCTableIV.java,CTIVThread,run,#,383

Before Change


                    FastRecipeList recipeList = new FastRecipeList(canCraft);
                    for (WrappedRecipe recipe : validRecipes){
                        checkStopThread();
                        if (canPlayerCraft(thePlayer, theTile, recipe, recipeList, false)) {
                            checkStopThread();
                            craftableRecipes.forceAddRecipe(recipe);
                            canCraft.add(recipe);

After Change


                    FastRecipeList recipeList = new FastRecipeList(canCraft);
                    for (WrappedRecipe recipe : validRecipes){
                        checkStopThread();
                        if (CraftingHandler.canPlayerCraft(thePlayer, theTile, recipe, recipeList, false)) {
                            checkStopThread();
                            craftableRecipes.forceAddRecipe(recipe);
                            canCraft.add(recipe);